home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Anwendun / 7UP_PD / WINDOWS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-22  |  4.5 KB  |  136 lines

  1. #define MAXWINDOWS 8
  2.  
  3. #define CREATED   0x0001
  4. #define OPENED    0x0002
  5. #define FULLED    0x0004
  6. #define ONTOP     0x0008
  7. #define CURSOR    0x0010
  8. #define CHANGED   0x0020
  9. #define CURSON    0x0040
  10. #define GEMFONTS  0x0080
  11. #define CBLINK    0x0100
  12. #define BLOCKSATZ 0x0200
  13. #define INSERT    0x0400
  14. #define INDENT    0x0800
  15. #define TABCOMP   0x1000
  16. #define PROPFONT  0x2000
  17. #define COLUMN    0x4000
  18. #define ICONIFIED 0x8000
  19.  
  20. #define STRING_LENGTH 512
  21. #define NBLOCKS        31  /* 31+1=minimaler Block von TC */
  22.  
  23. #define MAXFONTS   16
  24. #define MAXSIZES   16
  25.  
  26. typedef struct
  27. {
  28.    char name[33];
  29.    int id;
  30.    int attr;
  31.    int size[MAXSIZES+1];
  32. }FONTINFO;
  33.  
  34. typedef struct line
  35. {
  36.    struct line *prev, *next;
  37.    char *string;
  38.    int used,len;
  39.    int begcol, endcol;
  40.    int attr;
  41.    int effect; /* normal, fett, kursiv */
  42. }LINESTRUCT;
  43.  
  44. typedef struct              /* general window information */
  45. {
  46.    int wihandle;                     /* windowhandle     */
  47.    int vdihandle;                    /* VDI Handle       */
  48.    int icon;                         /* Iconnummer       */
  49.    int mentry;                       /* Menueintrag      */
  50.    int kind;                         /* WIKIND           */
  51.    int xwork,ywork,wwork,hwork;      /* workspace        */
  52.    char *name,*info;                 /* title and info   */
  53.    unsigned int w_state;             /* window status    */
  54.    int type;                         /* text or graphic  */
  55.    int row,col,cspos;                /* Reihe,Spalte,Sollposition */
  56.    int umbruch;                      /* Zeilenumbruch    */
  57.    long wfirst,hfirst;               /* 1. x,y Position  */
  58.    long wsize,hsize;/* Länge und Breite dessen, was dargestellt werden soll */
  59.    int  wscroll,hscroll;             /* hor. und vert. Scrollrate */
  60.    int  slwpos,slhpos;               /* Sliderstellung 0-1000 */
  61.    int (*draw)();                    /* (re)drawfunction */
  62.    long outspec;                     /* anything else -> */
  63.    int fontsize;                     /* fontsize         */
  64.    int fontid;
  65.    int tab;                          /* tabulator        */
  66.    LINESTRUCT *cstr;                 /* Cursor string    */
  67.    LINESTRUCT *wstr;                 /* Window string    */
  68.    LINESTRUCT *fstr;                 /* First string     */
  69.    OBJECT *toolbar;                         /* Windowtoolbar    */
  70.    long toolbaraddress;                     /* Adresse für rsrc_free() */
  71.     OBJECT *tabbar;                         /* Windowtabbar     */
  72. }WINDOW;
  73.  
  74. WINDOW *Wcreate(int, int, int, int, int );
  75. WINDOW *Wp(int wh);
  76. WINDOW *Wgettop(void);
  77. WINDOW *Wicon(int icon);
  78. WINDOW *Wgetwp(char *filename);
  79. WINDOW *Wmentry(int mentry);
  80. WINDOW *Wreadtempfile(char *, int);
  81. char *Wname(WINDOW *wp);
  82. int  Wh(WINDOW *wp);
  83. int  Wopen(WINDOW *wp);
  84. int  Whndlmsg(int *msgbuf);
  85. int  Whndlkbd(WINDOW *wp,int ,int);
  86. void Wredraw(WINDOW *wp, int *);
  87. void Wtop(WINDOW *wp);
  88. void Wbottom(WINDOW *wp);
  89. void Wfull(WINDOW *wp);
  90. void Wcycle(WINDOW *wp);
  91. int  Wcount(int state);
  92. void Wnewname(WINDOW *wp, const char *);
  93. void Wnewinfo(WINDOW *wp, const char *);
  94. int  Wnewfont(WINDOW *wp, int fontid, int fontsize);
  95. int  Wloadfonts(WINDOW *wp, int maxfonts, int maxsizes, FONTINFO *fip);
  96. void Wunloadfonts(WINDOW *wp);
  97. int  Wfontsize(WINDOW *wp, int fontsize);
  98. int  Wprintf(WINDOW *wp, const char *format, ... );
  99. int  Wscanf(WINDOW *wp, const char *format, ... );
  100. void Wclear(WINDOW *wp);
  101. void Wclearall(WINDOW *wp);
  102. void Wclearhome(WINDOW *wp);
  103. void Wcblink(WINDOW *wp);
  104. void Wcursor(WINDOW *wp);
  105. int  Wmxycursor(WINDOW *wp, int, int);
  106. void Wcuron(WINDOW *wp);
  107. void Wcuroff(WINDOW *wp);
  108. void Wcurup(WINDOW *wp);
  109. void Wcurdown(WINDOW *wp);
  110. void Wcurright(WINDOW *wp);
  111. void Wcurleft(WINDOW *wp);
  112. void Wmovesize(WINDOW *wp, int *);
  113. void Wcenter(WINDOW *wp);
  114. void Wslide(WINDOW *wp, int, int );
  115. void _Wscroll(WINDOW *wp, int dir, int delta, GRECT *rect);
  116. void Wmoveblk(WINDOW *wp, int dir, int delta, GRECT *rect);
  117. int  Warrow(WINDOW *wp, int );
  118. void Wslsize(WINDOW *wp, int, int );
  119. void Wslupdate(WINDOW *wp, int what);
  120. void Wclose(WINDOW *wp);
  121. void Wfree(WINDOW *wp);
  122. void Wdefattr(WINDOW *wp);
  123. void Wdelete(WINDOW *wp);
  124. void Wnew(void);
  125. int  Wtxtsize(WINDOW *wp, long *lines, long *chars);
  126. int  Wblksize(WINDOW *wp, LINESTRUCT *beg, LINESTRUCT *end, long *lines, long *chars);
  127. long Wchksum(WINDOW *wp);
  128. int  Wlpage(WINDOW *wp, int col);
  129. int  Wrpage(WINDOW *wp, int col);
  130. int  Wsetscreen(WINDOW *wp);
  131. int Wendline(WINDOW *wp);
  132. int Wadjpage(WINDOW *wp);
  133. void Wiconify(WINDOW *wp, int nxywh[]);
  134. void Wuniconify(WINDOW *wp, int nxywh[]);
  135. int Windex(WINDOW *wp);
  136. ə